home *** CD-ROM | disk | FTP | other *** search
/ Komputer for Alle 2001 #11 / CD 11 (Black) - 2001.iso / FAVORG / FAVO_SRC.ZIP / LegendDlg.cpp < prev    next >
Encoding:
C/C++ Source or Header  |  2000-10-25  |  1.2 KB  |  53 lines

  1. // FAVORG Version 1.1
  2. // Copyright (c) 2000 Ziff Davis Media, Inc.
  3. // All rights reserved.
  4. // First Published in PC Magazine, US Edition, November 7, 2000.
  5. // Programmer: Patrick Philippot
  6.  
  7. #include "stdafx.h"
  8. #include "favorg.h"
  9. #include "LegendDlg.h"
  10.  
  11. #ifdef _DEBUG
  12. #define new DEBUG_NEW
  13. #undef THIS_FILE
  14. static char THIS_FILE[] = __FILE__;
  15. #endif
  16.  
  17. /////////////////////////////////////////////////////////////////////////////
  18. // CLegendDlg dialog
  19.  
  20.  
  21. CLegendDlg::CLegendDlg(CWnd* pParent /*=NULL*/)
  22.     : CDialog(CLegendDlg::IDD, pParent)
  23. {
  24.     //{{AFX_DATA_INIT(CLegendDlg)
  25.         // NOTE: the ClassWizard will add member initialization here
  26.     //}}AFX_DATA_INIT
  27. }
  28.  
  29.  
  30. void CLegendDlg::DoDataExchange(CDataExchange* pDX)
  31. {
  32.     CDialog::DoDataExchange(pDX);
  33.     //{{AFX_DATA_MAP(CLegendDlg)
  34.         // NOTE: the ClassWizard will add DDX and DDV calls here
  35.     //}}AFX_DATA_MAP
  36. }
  37.  
  38.  
  39. BEGIN_MESSAGE_MAP(CLegendDlg, CDialog)
  40.     //{{AFX_MSG_MAP(CLegendDlg)
  41.     ON_WM_CLOSE()
  42.     //}}AFX_MSG_MAP
  43. END_MESSAGE_MAP()
  44.  
  45. /////////////////////////////////////////////////////////////////////////////
  46. // CLegendDlg message handlers
  47.  
  48. void CLegendDlg::OnClose() 
  49. {
  50.     // Notify view
  51.     GetParent()->SendMessage(WM_COMMAND, CMD_LEGEND_CLOSING, 0);
  52. }
  53.